:root {
  --color-bg: #FAF7F2;        /* основной фон (теплый, не серый) */
  --color-surface: #FFFFFF;   /* карточки */
  --color-primary: #8B5A2B;   /* основной (мясной / коричневый) */
  --color-primary-hover: #6F451F;

  --color-accent: #E8A96B;    /* вкусный акцент (лакомства) */
  --color-accent-soft: #F3D2B3;

  --color-text: #2B2B2B;
  --color-text-light: #6B6B6B;

  --color-border: #E5DED5;
}


.advantages {
    padding: 80px 0;
    background: var(--color-bg);
}

.advantages__title {
    text-align: center;
    font-size: 48px;
    margin-bottom: 60px;
}

.advantages__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 30px;
}

.advantages__item {
    background: var(--color-surface);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: transform .3s ease, box-shadow .3s ease;
}

.advantages__item:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.advantages__icon {
    font-size: 42px;
    display: block;
    margin-bottom: 20px;
}

.advantages__item h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.advantages__item p {
    font-size: 16px;
    color: var(--color-text);
}
